home *** CD-ROM | disk | FTP | other *** search
/ PCNet 2006 April / PCnet 2006-06.4.iso / oyun / Arcade.EXE / ass.swf / scripts / DefineButton2_17 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2003-06-17  |  283 b   |  14 lines

  1. on(release){
  2.    action = "addHit";
  3.    game = "asteroids";
  4.    loadVariablesNum("http://www.j3r.com/game.asp?",0,"POST");
  5.    var i = 0;
  6.    while(maxRocks >= i)
  7.    {
  8.       Target = eval("_root.Rock" + i);
  9.       removeMovieClip(Target);
  10.       i++;
  11.    }
  12.    gotoAndStop(4);
  13. }
  14.